home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Bank smakow / BankSmakow.air / BankSmakow.swf / scripts / com / makingwaves / events / NotificationEvent.as < prev    next >
Text File  |  2009-12-16  |  510b  |  20 lines

  1. package com.makingwaves.events
  2. {
  3.    import com.adobe.cairngorm.control.CairngormEvent;
  4.    
  5.    public class NotificationEvent extends CairngormEvent
  6.    {
  7.       
  8.       public static const EVENT_NAME:String = "notificationEvent";
  9.        
  10.       
  11.       public var success:Boolean;
  12.       
  13.       public function NotificationEvent(param1:Boolean = true, param2:Boolean = false, param3:Boolean = false)
  14.       {
  15.          super(EVENT_NAME,param2,param3);
  16.          this.success = param1;
  17.       }
  18.    }
  19. }
  20.